home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo ┌──────────────────────────────────────────────────┐
- echo │ VGA-Softball Festplatten-Installation │
- echo │ Programmdiskette (Prüfversion) │
- echo └──────────────────────────────────────────────────┘
- echo:
- echo:
- IF %1a == a goto Error
- IF %1 == c: goto weiter
- IF %1 == C: goto weiter
- IF %1 == d: goto weiter
- IF %1 == D: goto weiter
- IF %1 == e: goto weiter
- IF %1 == E: goto weiter
-
- :Error
- echo Bitte starten Sie die Installation mit folgenden Parametern:
- echo INSTALL d:
- echo:
- echo d: bezeichnet das logische Laufwerk (z.B. c:)
- echo:
- goto ende
-
- :weiter
- echo Die Installation erfolgt in dem Verzeichnis %1\SOFTBALL
- echo:
- echo * Erzeugen des Unterverzeichnisses
- md %1\SOFTBALL > nul
- echo * Installation der Programme & Daten
- copy *.* %1\SOFTBALL\*.* > nul
- %1:
- cd \SOFTBALL
- del %1\SOFTBALL\install.bat >nul
- :ende
-